home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / aal / malloc.h < prev    next >
C/C++ Source or Header  |  2006-01-09  |  1KB  |  35 lines

  1. /* Copyright (C) 2001, 2002, 2003 by Hans Reiser, licensing governed by
  2.    libaal/COPYING.
  3.    
  4.    malloc.h -- memory allocation functions. ctualy they are memory allocation
  5.    handlers which may be set by caller. In the allone mode they will point to
  6.    corresponding memory allocation functions, which are used in certain minimal
  7.    application (bootloaders, etc). In the standard mode they are pointed to libc
  8.    memory allocation functions (malloc, free, etc). */
  9.  
  10. #ifndef AAL_MALLOC_H
  11. #define AAL_MALLOC_H
  12.  
  13. #include <aal/types.h>
  14.  
  15. extern void aal_mem_fini(void);
  16. extern unsigned int aal_mem_free(void);
  17. extern void aal_mem_init(void *start, uint32_t len);
  18.  
  19. typedef void (*aal_free_handler_t) (void *);
  20. typedef void *(*aal_malloc_handler_t) (uint32_t);
  21.  
  22. #ifndef ENABLE_MINIMAL
  23. extern void aal_malloc_set_handler(aal_malloc_handler_t handler);
  24. extern aal_malloc_handler_t aal_malloc_get_handler(void);
  25.  
  26. extern aal_free_handler_t aal_free_get_handler(void);
  27. extern void aal_free_set_handler(aal_free_handler_t handler);
  28. #endif
  29.  
  30. extern void aal_free(void *ptr);
  31. extern void *aal_malloc(uint32_t size);
  32. extern void *aal_calloc(uint32_t size, char c);
  33. #endif
  34.  
  35.